home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
-
- set -e
-
- case "$1" in
- upgrade|failed-upgrade|abort-install|abort-upgrade)
- ;;
- remove|purge|disappear)
- if [ -x /usr/sbin/remove-shell ] && [ -f /etc/shells ]; then
- /usr/sbin/remove-shell /bin/bash
- /usr/sbin/remove-shell /bin/rbash
- fi
- ;;
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
- esac
-
- # Automatically added by dh_installmenu
- if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
- # End automatically added section
-
-
- exit 0
-